Method: rich.__main__.make_test_card.<locals>.comparison
Calls: 2, Exceptions: 0, Paths: 1Back
Path 1: 2 calls (1.0)
Syntax (1) '[cyan]# Markdown\n\nSupports much of the *markdown* __syntax__!\n\n- Headers\n- Basic formatting: **bold**, *italic*, `code`\n- Block quot...
Pretty (1) Markdown (1)
Table (2)
1def comparison(renderable1: RenderableType, renderable2: RenderableType) -> Table:
2 table = Table(show_header=False, pad_edge=False, box=None, expand=True)
3 table.add_column("1", ratio=1)
4 table.add_column("2", ratio=1)
5 table.add_row(renderable1, renderable2)
6 return table